home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
CU Amiga Super CD-ROM 18
/
CU Amiga Magazine's Super CD-ROM 18 (1997)(EMAP Images)(GB)[!][issue 1998-01].iso
/
CUCD
/
Programming
/
AmigaE
/
Src
/
Tools
/
Constructors
/
constructors.e
< prev
next >
Encoding:
Amiga
Atari
Commodore
DOS
FM Towns/JPY
Macintosh
Macintosh JP
Macintosh to JP
NeXTSTEP
RISC OS/Acorn
Shift JIS
UTF-8
Wrap
Text File
|
1992-09-02
|
378 b
|
23 lines
-> various constructors module
OPT MODULE
OPT EXPORT
MODULE 'exec/lists', 'exec/nodes'
PROC newlist(lh=NIL:PTR TO lh,type=0)
IF lh=NIL THEN lh:=NEW lh
lh.head:=lh+4
lh.tailpred:=lh
lh.tail:=0
lh.type:=0
lh.pad:=0
ENDPROC lh
PROC newnode(ln=NIL:PTR TO ln,name=NIL,type=0,pri=0)
IF ln=NIL THEN ln:=NEW ln
ln.name:=name
ln.pri:=pri
ln.type:=type
ENDPROC ln